home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / bdb-alter-table-1.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  426 b   |  13 lines  |  [TEXT/ttxt]

  1. -- source include/have_bdb.inc
  2.  
  3. #
  4. # Small basic test for ALTER TABLE bug ..
  5. #
  6. drop table if exists t1;
  7. create table t1(objid BIGINT not null, tablename  varchar(64), oid BIGINT not null, test BIGINT,  PRIMARY KEY (objid), UNIQUE(tablename))  type=BDB;
  8. insert into t1 values(1, 't1',4,9);
  9. insert into t1 values(2, 'metatable',1,9);
  10. insert into t1 values(3, 'metaindex',1,9 );
  11. select * from t1;
  12. alter table t1 drop column test;
  13.